You can open the Report Navigator window of the Report Builder by choosing .
を選択して、Report Builder の「レポートナビゲータ」ウィンドウを開くことができます。
The Report Navigator reveals the structure of the report. You can use the Report Navigator to insert functions into the report.
レポートナビゲータによって、レポートの構成が表示されます。 レポートナビゲータを使用して、レポートに関数を挿入できます。
Click an entry in the Report Navigator. The corresponding object or area is selected in the Report Builder view. Right-click an entry to open the context menu.
レポートナビゲータでエントリをクリックします。「Report Builder」ビューで対応するオブジェクトまたはエリアが選択されています。エントリを右クリックして、コンテキストメニューを開きます。
In the context menu of the Report Navigator, you see the same commands as in the Report Builder view, plus additional commands to create new functions or to delete them.
レポートナビゲータのコンテキストメニューに、「Report Builder」ビューと同じコマンドに加えて、新しい関数を作成したり、削除したりするための追加コマンドが表示されます。
Functions can be entered using a syntax as specified by the OpenFormula proposal.
関数は、OpenFormula プロポーザルで指定された構文を使用して入力できます。
See Wiki page about Base for some more help regarding the functions in a report.
レポートの関数についての詳細は、Base に関する Wiki ページ を参照してください。
Open the Report Navigator.
レポートナビゲータを開きます。
Open the Groups entry and the group where you want to calculate the cost.
グループ項目と、費用を計算するグループを開きます。
The group has a sub entry called functions.
グループには関数というサブ項目があります。
Open the context menu (right click) on the functions entry, choose to create a new function, and select it.
関数項目のコンテキストメニューを右クリックで開いて、新しい関数の作成を選択します。
In the property browser you see the function.
プロパティーブラウザで関数を確認します。
Change the name to e.g. CostCalc and the formula to [CostCalc] + [enter your cost column name].
名前を CostCalc などに変更し、数式を [CostCalc] + [費用列名を入力] に変更します。
In the initial value enter 0.
初期値に 0 を入力します。
Now you can insert a text field and bind it to your [CostCalc] (appears in the data field list box).
これで、テキストフィールドを入力し、それを [CostCalc] にバインドできるようになります。これはデータフィールドリストボックスに表示されます。
Maybe you have to set the initial value to the value of the field like [field].
[field]のようなフィールドの値に最初の値を設定しなければならないかもしれません。
If there are blank fields in the cost column, use the following formula to replace the blank fields' content with zero:
費用列に空白のフィールドがある場合、次の数式を使って空白のフィールドの内容を 0 に置き換えます。
[SumCost] + IF(ISBLANK([field]);0;[field])
[SumCost] + IF(ISBLANK([field]);0;[field])